home *** CD-ROM | disk | FTP | other *** search
- #
- # Zustands-▄berwachungs-Script
- # State Watch Script
- #
- # Factory
- #
- # created: 15-Jun-2000 Bernd
- #
- # (C) COPYRIGHT 2000 RADONLABS GMBH
- #
-
- proc artefactstoragewatch_normal {} {
-
- # vorerst hier unzerstoerbar. Bleibt so, bis es aufgesammelt
- # (in BackPack) oder gebaut (kein Artefakt mehr) wird
- if {[.getartefactmode] == "false"} {
- .announcestate house
- } elseif {[.iscollected] == "true"} {
- .announcestate backpack
- } elseif {[.getcharges] <= 0} {
- .setremoveable true
- } elseif {[.getcreator] != "null"} {
- .announcestate infactoryslot
- }
- }
-
- proc artefactstoragewatch_infactoryslot {} {
-
- # vorerst hier unzerstoerbar. Bleibt so, bis es aufgesammelt
- # (in BackPack) oder gebaut (kein Artefakt mehr) wird
- if {[.getartefactmode] == "false"} {
- .announcestate house
- } elseif {[.iscollected] == "true"} {
- .announcestate backpack
- } elseif {[.getcharges] <= 0} {
- .setremoveable true
- } elseif {[.getcreator] == "null"} {
- .announcestate normal
- }
- }
-
- proc artefactstoragewatch_bauphase {} {
-
- # kann zerstoert oder wieder zusammengeklappt werden
- if {[.iskilled] == "true"} {
- .announcestate explode
- } elseif {[.getartefactmode] == "true"} {
- .announcestate normal
- } elseif {[.isstatetimeover] == "true"} {
- .announcestate house
- }
- }
-
-
- proc artefactstoragewatch_house {} {
-
- # kann zerstoert oder wieder zusammengeklappt werden
- if {[.iskilled] == "true"} {
- .announcestate explode
- } elseif {[.getartefactmode] == "true"} {
- .announcestate normal
- } elseif {[.isdooropen] == "true"} {
- .announcestate open
- } elseif {[.removebuilding] == "true"} {
- .announcestate remove
- }
- }
-
- proc artefactstoragewatch_explode {} {
-
- # Uebergang zum Artefakt oder Wegnehmen
- if {[.isanimfinished] == "true"} {
- if {[.getcharges] <= 0} {
- .setremoveable true
- } else {
- .announcestate normal
- .removefromisland
- }
- }
- }
-
- proc artefactstoragewatch_remove {} {
-
- # Uebergang zum Artefakt oder Wegnehmen
- if {[.isanimfinished] == "true"} {
- if {[.getcharges] <= 0} {
- .setremoveable true
- } else {
- .announcestate normal
- .removefromisland
- }
- }
- }
-
- proc artefactstoragewatch_backpack {} {
-
- # Moeglich: usgeworfen (Nicht mehr "gesammelt") oder im
- # Menue gezeigt (sichtbar)
- if {[.iscollected] == "false"} {
- .announcestate normal
- } elseif {[.isvisible] == "true"} {
- .announcestate menue
- }
- }
-
- proc artefactstoragewatch_menu {} {
-
- if {[.isvisible] == "false"} {
- .announcestate backpack
- } elseif {[.getartefactuse] == "true"} {
- .announcestate build
- } elseif {[.iscollected] == "false"} {
- .announcestate normal
- }
- }
-
- proc artefactstoragewatch_build {} {
-
- if {[.iskilled] == "true"} {
- .announcestate explode
- } elseif {[.getartefactmode] == "false"} {
- .announcestate bauphase
- } elseif {[.getartefactuse] == "false"} {
- .announcestate backpack
- }
- }
-
- proc artefactstoragewatch_cinematic {} {
-
- # empty
- }
-
-